.toggle-burger,
.toggle-burger:hover,
.toggle-burger:focus {
	display: inline-flex;
	width: 42px;
	height: 42px;
	margin-left: auto;
	background: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.toggle-burger span {
	position: relative;
	display: inline-block;
	width: 35px;
	border-bottom:3px solid var(--header-color,#ffffff);
	border-top: 3px solid var(--header-color,#ffffff);
	border-radius: 2px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.toggle-burger span::before,
.toggle-burger span::after {
	content: '';
	position: absolute;
	top: -12px;
	width: 100%;
	background: #ffffff;
	border-bottom: 3px solid var(--header-color,#ffffff);
	border-top: 3px solid var(--header-color,#ffffff);
	border-radius: 2px;
	-webkit-transition: transform .3s, top .3s ease .3s;
	transition: transform .3s, top .3s ease .3s;
}
.toggle-burger span::after {
	top: 7px;
}

.open.toggle-burger span {
	border-bottom-color: transparent;
	border-top-color: transparent;
}
.open.toggle-burger span::before,
.open.toggle-burger span::after {
	top: 0;
	-webkit-transition: top .3s, transform .3s ease .3s;
	transition: top .3s, transform .3s ease .3s;
}
.open.toggle-burger span::before {
	transform: rotate(-45deg);
}
.open.toggle-burger span::after {
	transform: rotate(45deg);
}

nav.nav-cover {
	--toggle-size: 40px;
	position: fixed;
	inset: 0;
	z-index: 800;
	width: 100vw;
	height: 100vh;
	padding: 0;
	margin: 0;
	background: #000000;
	transform: translateX(-100vw);
	transition: transform .2s;
}
nav.nav-cover.open {
	transform: translateX(0);
}
nav.nav-cover .nav-body {
	inset: 3rem 1rem;
}
nav.nav-cover .parent {
	position: relative;
	
}
nav.nav-cover .parent > a > span {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: var(--toggle-size);
	height: var(--toggle-size);
	cursor: pointer;
}
nav.nav-cover .parent > a > span:before {
	content: '';
	display: block;
	width:24px;
	height: 24px;
	background-color: #ffffff;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='currentColor' class='bi bi-plus-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='currentColor' class='bi bi-plus-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}
nav.nav-cover .parent > a > span.open:before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='currentColor' class='bi bi-dash-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='currentColor' class='bi bi-dash-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

nav.nav-cover ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
nav.nav-cover .nav-root,
nav.nav-cover li > ul {
	overflow: hidden;
}

nav.nav-cover a,
nav.nav-cover a:focus {
	position: relative;
	display: block;
	width: 100%;
	padding: 1rem 0;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.5rem;
	transition: transform var(--speed);
}
nav.nav-cover a:hover{
	transform: scale(1.3);
}

nav.nav-cover .nav-root > li > a,
nav.nav-cover .nav-root > li > a:hover,
nav.nav-cover .nav-root > li > a:focus {
	font-size: 2.25rem;
	font-weight: 800;
	letter-spacing: -1px;
}
nav.nav-cover .nav-root > li > ul > li > a,
nav.nav-cover .nav-root > li > ul > li > a:hover,
nav.nav-cover .nav-root > li > ul > li > a:focus {
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1;
}
nav.nav-cover .nav-root > li > ul > li > ul > li > a,
nav.nav-cover .nav-root > li > ul > li > ul > li > a:hover,
nav.nav-cover .nav-root > li > ul > li > ul > li > a:focus {
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1;
}
nav.nav-cover .parent a,
nav.nav-cover .parent a:hover,
nav.nav-cover .parent a:focus {
	width: calc(100% - var(--toggle-size));
}

/* Default open-closed */
nav.nav-cover .nav-root ul {
	display: none;
}
nav.nav-cover .nav-root ul.open {
	display: block;
}

/* Slide Down using height */

/* mobile devices */


@media (max-width:991px) {
	nav.nav-cover ul {
		text-transform: uppercase;
		position: relative;
		list-style: none;
		text-align: center;
		top: 8rem;
	}
	nav.nav-cover ul.nav-root ul {
		padding-left: 2rem;
	}
	nav.nav-cover ul.m-slide-down {
		display: block;
	}
	nav.nav-cover ul.m-slide-down > li {
		overflow: hidden;
		max-height: 0;
		opacity: 0;
		-webkit-transition: max-height 300ms ease-in, opacity 300ms ease-in;
		-moz-transition: max-height 300ms ease-in, opacity 300ms ease-in;
		-o-transition: max-height 300ms ease-in, opacity 300ms ease-in;
		transition: max-height 300ms ease-in, opacity 300ms ease-in;
	}
	nav.nav-cover ul.m-slide-down.nav-root > li {
		max-height: 200vh;
		opacity: 1;
	}
	nav.nav-cover ul.m-slide-down.open > li {
		max-height: 200vh;
		opacity: 1;
		-webkit-transition: max-height 1000ms ease-in, opacity 1000ms ease-in;
		-moz-transition: max-height 1000ms ease-in, opacity 1000ms ease-in;
		-o-transition: max-height 1000ms ease-in, opacity 1000ms ease-in;
		transition: max-height 1000ms ease-in, opacity 1000ms ease-in;
	}
	
	nav.nav-cover.slide-h {
		padding-left: 0;
		padding-right: 0;
	}
	nav.nav-cover.slide-h ul {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	nav.nav-cover.slide-h ul.nav-root ul {
		position: absolute;
		top: 0;
		left: 100vw;
		padding: 0;
	}
	nav.nav-cover.slide-h ul.nav-root > li,
	nav.nav-cover.slide-h ul.nav-root > li:hover {
		border: 1px solid var(--line-color);
		margin-bottom: .5rem;
	}
	nav.nav-cover.slide-h ul.nav-root > li a,
	nav.nav-cover.slide-h ul.nav-root > li a:hover,
	nav.nav-cover.slide-h ul.nav-root > li a:focus {
		display: block;
		width: calc(100% - 40px);
		padding: .5rem 1rem;
		background: rgba(255,255,255,.2);
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1;
	}
}

@media (orientation: landscape) and (max-height:480px){
	nav.nav-cover ul {
		position: absolute;
		top: 2rem;
		left: 5rem;
		right: 5rem;
	}
		nav.nav-cover ul a{
		font-size: 1.3rem;
		padding: 0.3rem 0;
	}
	
}





/* desktop devices */
@media (min-width:992px) {
	nav.nav-cover {
		--speed: 300ms;
		--delay-in: 100;
		--delay-out: 50;
		transform: translate(0, -100vh);
	}
	nav.nav-cover.open {
		transform: none;
		display: flex;
		align-items:center;
		justify-content: center;
	}

	nav.nav-cover .nav-body {
		text-transform: uppercase;
		
	}
	nav.nav-cover .nav-root {
		position: relative;
		width: 50%;
	}
	nav.nav-cover .nav-root,
	nav.nav-cover li > ul {
		overflow: initial;
	}
	nav.nav-cover .nav-root ul.nav-level-2.cat-0101.open {
		display: block;
		max-height: 60vh;
		overflow-y: auto;
	}
	nav.nav-cover .nav-root > li > ul {
		position: absolute;
		top: 0;
		bottom: auto;
		left: 100%;
		display: block;
		width: 100%;
	}
	nav.nav-cover .nav-root > li > ul.cat-01 {
		top: -70px;
	}
	nav.nav-cover li.parent {
		position: static;
	}
	nav.nav-cover li {
		color: #ffffff;
		text-align: center;
		will-change: opacity, transform;
		transition: all var(--speed);
		transition-delay: calc(calc(var(--total-delay) * var(--delay-out)) - calc(var(--delay) * var(--delay-out)));
	}
	nav.nav-cover .open > li {
		position: relative;
		z-index: 0;
		opacity: 1;
		transform: none;
		will-change: opacity, transform;
		transition: all var(--speed);
		transition-delay: calc(var(--delay) * var(--delay-in));
	}

}

